@charset 'utf-8';
/* 服务内容页 */

.ynq-serviceBody{
	width:1200px;
	margin:0 auto;
	display:flex;
	justify-content: flex-start;
}

.ynq-service-tree{
	background: #fff;
	width: 200px;
	padding:20px 0;
}
.ynq-service-tree li{
	position: relative;
	transition: ease .3s;
	-webkit-transition: ease .3s;
	-ms-transition: ease .3s;
	-moz-transition: ease .3s;
}
.ynq-service-tree li:hover{
	background: #3462FD;
}

.ynq-service-tree li:hover:before{
	position: absolute;
	content: '\e64c';
	font-family: 'ynq';
	right: 10px;
	top: 50%;
	color: #fff;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	-moz-transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
}
.ynq-service-tree li:hover a{
	color: #fff;
}
.ynq-service-tree li>a{
	display: block;
	line-height: 50px;
	padding-left: 20px;
	transition: ease .3s;
	-webkit-transition: ease .3s;
	-ms-transition: ease .3s;
	-moz-transition: ease .3s;
}
.ynq-service-tree li.active{
	background: #3462FD;
}
.ynq-service-tree li.active>a{
	color: #fff;
}
.ynq-service-tree li.active:before{
	position: absolute;
	content: '\e64c';
	font-family: 'ynq';
	right: 10px;
	top: 50%;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	-moz-transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
	color: #fff;
}

.ynq-service-content{
	background: #fff;
	margin-left: 20px;
	flex: 1;
	padding:20px;
}

.ynq-service-header{
	display: flex;
	justify-content: space-between;
	line-height: 50px;
	border-bottom: 1px solid #dedede;
	position: relative;
	margin-bottom: 20px;
}
.ynq-service-header:before{
	content: '';
	position: absolute;
	width: 100px;
	height: 3px;
	background: #3462FD;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-ms-border-radius: 50px;
	-moz-border-radius: 50px;
	bottom: -1px;
}
.ynq-service-header>span{
	font-size: 20px;
	color: #3462FD;
}
.ynq-service-btn{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.ynq-service-btn>a{
	background: #3462FD;
	color: #fff;
	line-height: 30px;
	padding:0 10px;
	font-size: 14px;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-ms-border-radius: 50px;
	-moz-border-radius: 50px;
	transition: ease .3s;
	-webkit-transition: ease .3s;
	-ms-transition: ease .3s;
	-moz-transition: ease .3s;
}
.ynq-service-btn>a:hover{
	opacity: .8;
}
.ynq-service-btn>a:nth-child(1){
	margin-right: 10px;
}

/* 移动端样式 */
.ynq-SubContent-Mob{
	position: relative;
}

.ynq-service-mobnav{
	position: absolute;
	left: 16px;
	top: 7px;
	cursor: pointer;
}

.ynq-service-mobnav>span{
	font-size: 14px;
}

.ynq-mobService{
	background: #fff;
	padding:20px;
}

.ynq-navService-mask{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
	transition: ease .3s;
	-webkit-transition: ease .3s;
	-ms-transition: ease .3s;
	-moz-transition: ease .3s;
	visibility: hidden;
}
.ynq-navService-mask.active{
	background:rgba(0, 0, 0, .23);
	visibility: visible;
}
.ynq-navService{
	position: absolute;
	bottom: -300px;
	width: calc(100vw - 40px);
	background: #fff;
	height: 250px;
	padding:40px 20px 20px;
	overflow-y: auto;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	transition: ease .3s;
	-webkit-transition: ease .3s;
	-ms-transition: ease .3s;
	-moz-transition: ease .3s;
}

.ynq-navService>span{
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 20px;
}

.ynq-navService-mask.active .ynq-navService{
	bottom: 0;
}
.ynq-mobnav-list>li{
	text-align: center;
	line-height: 40px;
}
.ynq-mobnav-list>li>a{
	display: block;
}
.ynq-mobnav-list>li.active{
	background:#3462FD;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-ms-border-radius: 50px;
	-moz-border-radius: 50px;
}
.ynq-mobnav-list>li.active a{
	color: #fff;
}
.ynq-mob-href{
	position: absolute;
	right: 16px;
	top: 6px;
}

.ynq-mob-href a{
	padding:3px 10px;
	font-size: 14px;
	background: #3462FD;
	color: #fff;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-ms-border-radius: 50px;
	-moz-border-radius: 50px;
}